home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / MacHacksBug / Python 1.5.2c1 / Mac / Tools / macfreeze / macgen_info.py < prev    next >
Encoding:
Python Source  |  2000-06-23  |  231 b   |  9 lines

  1. """macgen_info - Generate informational output"""
  2.  
  3. def generate(output, module_dict):
  4.     for name in module_dict.keys():
  5.         print 'Include %-20s\t'%name,
  6.         module = module_dict[name]
  7.         print module.gettype(), '\t', `module`
  8.     return 0
  9.